Over Refactoring Of Tests ^^^^^ **Definition:** * where you can’t read them because they’ve been DRYed out to death **Code Example:** .. code-block:: javascript // Over Refactoring Of Test assertThat(calculateAnswer(INPUT)) .isEqualTo(EXPECTED); .. code-block:: javascript //before assertThat(calculateAnswercountTheWordsIn("This is a string")) .isEqualTo(4); **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `Test Smells - The Coding Craftsman `_ :octicon:`file-code;1em`